crypto/tls.cipherSuiteTLS13.hash (field)
28 uses
crypto/tls (current package)
cipher_suites.go#L198: hash crypto.Hash
handshake_client.go#L214: transcript := suite.hash.New()
handshake_client.go#L369: if offeredSuite != nil && offeredSuite.hash == cipherSuite.hash {
handshake_client.go#L398: hello.pskBinders = [][]byte{make([]byte, cipherSuite.hash.Size())}
handshake_client.go#L403: transcript := cipherSuite.hash.New()
handshake_client_tls13.go#L64: hs.transcript = hs.suite.hash.New()
handshake_client_tls13.go#L258: if pskSuite.hash == hs.suite.hash {
handshake_client_tls13.go#L263: transcript := hs.suite.hash.New()
handshake_client_tls13.go#L357: if pskSuite.hash != hs.suite.hash {
handshake_client_tls13.go#L754: msg.nonce, cipherSuite.hash.Size())
handshake_server_tls13.go#L178: hs.transcript = hs.suite.hash.New()
handshake_server_tls13.go#L323: if pskSuite == nil || pskSuite.hash != hs.suite.hash {
handshake_server_tls13.go#L349: transcript := cloneHash(hs.transcript, hs.suite.hash)
handshake_server_tls13.go#L371: transcript := hs.suite.hash.New()
handshake_server_tls13.go#L829: nil, suite.hash.Size())
key_schedule.go#L62: n, err := hkdf.Expand(c.hash.New, secret, hkdfLabelBytes).Read(out)
key_schedule.go#L72: transcript = c.hash.New()
key_schedule.go#L74: return c.expandLabel(secret, label, transcript.Sum(nil), c.hash.Size())
key_schedule.go#L80: newSecret = make([]byte, c.hash.Size())
key_schedule.go#L82: return hkdf.Extract(c.hash.New, newSecret, currentSecret)
key_schedule.go#L88: return c.expandLabel(trafficSecret, trafficUpdateLabel, nil, c.hash.Size())
key_schedule.go#L102: finishedKey := c.expandLabel(baseKey, "finished", nil, c.hash.Size())
key_schedule.go#L103: verifyData := hmac.New(c.hash.New, finishedKey)
key_schedule.go#L114: h := c.hash.New()
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |